Replicated code from Jenny Trickey’s repo here
Summaries generated: 2025 May 29 20:30 UTC
Load needed libraries.
# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)
# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)
Set user-defined variables.
# name project
# ProjID <- 'MHI UxS Glider Project'
# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)
# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets,
paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML
# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp
# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files")
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")
# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported
# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)
#Set time zone to UTC
Sys.setenv(TZ = 'UTC')
# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3',
# '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a',
'#66a61e', '#e6ab02')
Source some external functions
source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))
# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))
If already created, load an existing dets PAMpal
AcousticStudy object for event processing. We need to load both the
unfiltered dets and filtered detsFilt
AcousticStudies.
# load existing dets AcousticStudy (created with
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
dets <- readRDS(detsFile)
cat('Loaded', detsFile, '\n')
} else {
cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_002/CalCurCEAS_2024_002_Filtered.rdata
if (file.exists(detsFiltFile)){
detsFilt <- readRDS(detsFiltFile)
cat('Loaded', detsFiltFile, '\n')
} else {
cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_002/CalCurCEAS_2024_002_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))
Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_002/CalCurCEAS_2024_002_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_002/CalCurCEAS_2024_002_ch1.rdata
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 8530 out of 8530 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========= | 8% | |========== | 8% | |========== | 9% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |============== | 12% | |=============== | 12% | |=============== | 13% | |================ | 13% | |================ | 14% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |=================== | 16% | |==================== | 16% | |==================== | 17% | |===================== | 17% | |===================== | 18% | |====================== | 18% | |======================= | 18% | |======================= | 19% | |======================== | 19% | |======================== | 20% | |========================= | 20% | |========================= | 21% | |========================== | 21% | |========================== | 22% | |=========================== | 22% | |=========================== | 23% | |============================ | 23% | |============================= | 23% | |============================= | 24% | |============================== | 24% | |============================== | 25% | |=============================== | 25% | |=============================== | 26% | |================================ | 26% | |================================ | 27% | |================================= | 27% | |================================== | 27% | |================================== | 28% | |=================================== | 28% | |=================================== | 29% | |==================================== | 29% | |==================================== | 30% | |===================================== | 30% | |===================================== | 31% | |====================================== | 31% | |====================================== | 32% | |======================================= | 32% | |======================================== | 32% | |======================================== | 33% | |========================================= | 33% | |========================================= | 34% | |========================================== | 34% | |========================================== | 35% | |=========================================== | 35% | |=========================================== | 36% | |============================================ | 36% | |============================================= | 36% | |============================================= | 37% | |============================================== | 37% | |============================================== | 38% | |=============================================== | 38% | |=============================================== | 39% | |================================================ | 39% | |================================================ | 40% | |================================================= | 40% | |================================================= | 41% | |================================================== | 41% | |=================================================== | 41% | |=================================================== | 42% | |==================================================== | 42% | |==================================================== | 43% | |===================================================== | 43% | |===================================================== | 44% | |====================================================== | 44% | |====================================================== | 45% | |======================================================= | 45% | |======================================================== | 46% | |========================================================= | 46% | |========================================================= | 47% | |========================================================== | 47% | |========================================================== | 48% | |=========================================================== | 48% | |=========================================================== | 49% | |============================================================ | 49% | |============================================================ | 50% | |============================================================= | 50% | |============================================================== | 50% | |============================================================== | 51% | |=============================================================== | 51% | |=============================================================== | 52% | |================================================================ | 52% | |================================================================ | 53% | |================================================================= | 53% | |================================================================= | 54% | |================================================================== | 54% | |=================================================================== | 55% | |==================================================================== | 55% | |==================================================================== | 56% | |===================================================================== | 56% | |===================================================================== | 57% | |====================================================================== | 57% | |====================================================================== | 58% | |======================================================================= | 58% | |======================================================================= | 59% | |======================================================================== | 59% | |========================================================================= | 59% | |========================================================================= | 60% | |========================================================================== | 60% | |========================================================================== | 61% | |=========================================================================== | 61% | |=========================================================================== | 62% | |============================================================================ | 62% | |============================================================================ | 63% | |============================================================================= | 63% | |============================================================================= | 64% | |============================================================================== | 64% | |=============================================================================== | 64% | |=============================================================================== | 65% | |================================================================================ | 65% | |================================================================================ | 66% | |================================================================================= | 66% | |================================================================================= | 67% | |================================================================================== | 67% | |================================================================================== | 68% | |=================================================================================== | 68% | |==================================================================================== | 68% | |==================================================================================== | 69% | |===================================================================================== | 69% | |===================================================================================== | 70% | |====================================================================================== | 70% | |====================================================================================== | 71% | |======================================================================================= | 71% | |======================================================================================= | 72% | |======================================================================================== | 72% | |======================================================================================== | 73% | |========================================================================================= | 73% | |========================================================================================== | 73% | |========================================================================================== | 74% | |=========================================================================================== | 74% | |=========================================================================================== | 75% | |============================================================================================ | 75% | |============================================================================================ | 76% | |============================================================================================= | 76% | |============================================================================================= | 77% | |============================================================================================== | 77% | |=============================================================================================== | 77% | |=============================================================================================== | 78% | |================================================================================================ | 78% | |================================================================================================ | 79% | |================================================================================================= | 79% | |================================================================================================= | 80% | |================================================================================================== | 80% | |================================================================================================== | 81% | |=================================================================================================== | 81% | |=================================================================================================== | 82% | |==================================================================================================== | 82% | |===================================================================================================== | 82% | |===================================================================================================== | 83% | |====================================================================================================== | 83% | |====================================================================================================== | 84% | |======================================================================================================= | 84% | |======================================================================================================= | 85% | |======================================================================================================== | 85% | |======================================================================================================== | 86% | |========================================================================================================= | 86% | |========================================================================================================== | 86% | |========================================================================================================== | 87% | |=========================================================================================================== | 87% | |=========================================================================================================== | 88% | |============================================================================================================ | 88% | |============================================================================================================ | 89% | |============================================================================================================= | 89% | |============================================================================================================= | 90% | |============================================================================================================== | 90% | |============================================================================================================== | 91% | |=============================================================================================================== | 91% | |================================================================================================================ | 91% | |================================================================================================================ | 92% | |================================================================================================================= | 92% | |================================================================================================================= | 93% | |================================================================================================================== | 93% | |================================================================================================================== | 94% | |=================================================================================================================== | 94% | |=================================================================================================================== | 95% | |==================================================================================================================== | 95% | |===================================================================================================================== | 96% | |====================================================================================================================== | 96% | |====================================================================================================================== | 97% | |======================================================================================================================= | 97% | |======================================================================================================================= | 98% | |======================================================================================================================== | 98% | |======================================================================================================================== | 99% | |========================================================================================================================= | 99% | |========================================================================================================================= | 100% | |==========================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 8530 out of 8530 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========= | 8% | |========== | 8% | |========== | 9% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |============== | 12% | |=============== | 12% | |=============== | 13% | |================ | 13% | |================ | 14% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |=================== | 16% | |==================== | 16% | |==================== | 17% | |===================== | 17% | |===================== | 18% | |====================== | 18% | |======================= | 18% | |======================= | 19% | |======================== | 19% | |======================== | 20% | |========================= | 20% | |========================= | 21% | |========================== | 21% | |========================== | 22% | |=========================== | 22% | |=========================== | 23% | |============================ | 23% | |============================= | 23% | |============================= | 24% | |============================== | 24% | |============================== | 25% | |=============================== | 25% | |=============================== | 26% | |================================ | 26% | |================================ | 27% | |================================= | 27% | |================================== | 27% | |================================== | 28% | |=================================== | 28% | |=================================== | 29% | |==================================== | 29% | |==================================== | 30% | |===================================== | 30% | |===================================== | 31% | |====================================== | 31% | |====================================== | 32% | |======================================= | 32% | |======================================== | 32% | |======================================== | 33% | |========================================= | 33% | |========================================= | 34% | |========================================== | 34% | |========================================== | 35% | |=========================================== | 35% | |=========================================== | 36% | |============================================ | 36% | |============================================= | 36% | |============================================= | 37% | |============================================== | 37% | |============================================== | 38% | |=============================================== | 38% | |=============================================== | 39% | |================================================ | 39% | |================================================ | 40% | |================================================= | 40% | |================================================= | 41% | |================================================== | 41% | |=================================================== | 41% | |=================================================== | 42% | |==================================================== | 42% | |==================================================== | 43% | |===================================================== | 43% | |===================================================== | 44% | |====================================================== | 44% | |====================================================== | 45% | |======================================================= | 45% | |======================================================== | 46% | |========================================================= | 46% | |========================================================= | 47% | |========================================================== | 47% | |========================================================== | 48% | |=========================================================== | 48% | |=========================================================== | 49% | |============================================================ | 49% | |============================================================ | 50% | |============================================================= | 50% | |============================================================== | 50% | |============================================================== | 51% | |=============================================================== | 51% | |=============================================================== | 52% | |================================================================ | 52% | |================================================================ | 53% | |================================================================= | 53% | |================================================================= | 54% | |================================================================== | 54% | |=================================================================== | 55% | |==================================================================== | 55% | |==================================================================== | 56% | |===================================================================== | 56% | |===================================================================== | 57% | |====================================================================== | 57% | |====================================================================== | 58% | |======================================================================= | 58% | |======================================================================= | 59% | |======================================================================== | 59% | |========================================================================= | 59% | |========================================================================= | 60% | |========================================================================== | 60% | |========================================================================== | 61% | |=========================================================================== | 61% | |=========================================================================== | 62% | |============================================================================ | 62% | |============================================================================ | 63% | |============================================================================= | 63% | |============================================================================= | 64% | |============================================================================== | 64% | |=============================================================================== | 64% | |=============================================================================== | 65% | |================================================================================ | 65% | |================================================================================ | 66% | |================================================================================= | 66% | |================================================================================= | 67% | |================================================================================== | 67% | |================================================================================== | 68% | |=================================================================================== | 68% | |==================================================================================== | 68% | |==================================================================================== | 69% | |===================================================================================== | 69% | |===================================================================================== | 70% | |====================================================================================== | 70% | |====================================================================================== | 71% | |======================================================================================= | 71% | |======================================================================================= | 72% | |======================================================================================== | 72% | |======================================================================================== | 73% | |========================================================================================= | 73% | |========================================================================================== | 73% | |========================================================================================== | 74% | |=========================================================================================== | 74% | |=========================================================================================== | 75% | |============================================================================================ | 75% | |============================================================================================ | 76% | |============================================================================================= | 76% | |============================================================================================= | 77% | |============================================================================================== | 77% | |=============================================================================================== | 77% | |=============================================================================================== | 78% | |================================================================================================ | 78% | |================================================================================================ | 79% | |================================================================================================= | 79% | |================================================================================================= | 80% | |================================================================================================== | 80% | |================================================================================================== | 81% | |=================================================================================================== | 81% | |=================================================================================================== | 82% | |==================================================================================================== | 82% | |===================================================================================================== | 82% | |===================================================================================================== | 83% | |====================================================================================================== | 83% | |====================================================================================================== | 84% | |======================================================================================================= | 84% | |======================================================================================================= | 85% | |======================================================================================================== | 85% | |======================================================================================================== | 86% | |========================================================================================================= | 86% | |========================================================================================================== | 86% | |========================================================================================================== | 87% | |=========================================================================================================== | 87% | |=========================================================================================================== | 88% | |============================================================================================================ | 88% | |============================================================================================================ | 89% | |============================================================================================================= | 89% | |============================================================================================================= | 90% | |============================================================================================================== | 90% | |============================================================================================================== | 91% | |=============================================================================================================== | 91% | |================================================================================================================ | 91% | |================================================================================================================ | 92% | |================================================================================================================= | 92% | |================================================================================================================= | 93% | |================================================================================================================== | 93% | |================================================================================================================== | 94% | |=================================================================================================================== | 94% | |=================================================================================================================== | 95% | |==================================================================================================================== | 95% | |===================================================================================================================== | 96% | |====================================================================================================================== | 96% | |====================================================================================================================== | 97% | |======================================================================================================================= | 97% | |======================================================================================================================= | 98% | |======================================================================================================================== | 98% | |======================================================================================================================== | 99% | |========================================================================================================================= | 99% | |========================================================================================================================= | 100% | |==========================================================================================================================| 100%
Updated file paths to binaries in databases for Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_002/CalCurCEAS_2024_002_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_002/CalCurCEAS_2024_002_ch1.rdata
To be used for manual scoring based on report figures.
# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents),
species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))
# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}
# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]
# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
2140 events (files) in drift. 672 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.
Load the reference spectra for plotting, if set with
refSpecList.
# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
# e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')
refSpecs <- NULL
if (!is.null(refSpecList)){
refSpecs = list()
for (rs in refSpecList){
refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
}
}
Loop through each detection event (n = 672) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.
Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.
for (iEvent in c(1:nEventsFilt)){
# iEvent = 6 # for testing
# ("pagebreak \n")
# extract this event UID string
eventList <- PAMpal::events(detsFilt)
eventUID <- names(eventList)[iEvent]
###### summarize clicks ######
cl <- clickSummary(detsFilt, eventUID)
if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
# keep this in evTable
evTable$keep[evTable$id == eventUID] <- TRUE
evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak,
na.rm = TRUE)
# set header for this event and print time
cat('\n\n#### Event ID: ', names(eventList)[iEvent], '\n')
cat('Time: ', format(eventList[[eventUID]]@ancillary$grouping$start,
'%Y-%m-%d %H:%M%Z'), ' to ',
format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'),
'\n')
cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])),
'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
'filtering.\n')
cat('\n')
###### summarize whistles ######
# wl <- whistleSummary(detsFilt, eventUID)
#
# cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
# cat('\n')
###### click plots and table ######
cat('\n##### Click plots and table\n')
cat('\n SNR histogram includes all filtered clicks. Other plots contain only',
'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
'.\n')
cat('\n')
# if any clicks...
if (cl$nClicks > 0){
# histogram of all clicks and SNR >= 15 dB cut off
xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
if (any(!is.na(cl$snr))){
hist(cl$snr, breaks = seq(from = floor(min(cl$snr)),
to = xMax, by = 2),
main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
abline(v = 15, lty = 2, lwd = 2, col = 'red4')
}
}
# if sufficient good clicks...
if (cl$nGoodClicks > 0) {
# histogram of click durations - good clicks only
subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
hist(cl$goodClicks$duration,
breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100,
by = 100), main = 'Click duration', sub = subStr,
xlab = expression(paste('duration [', mu, 's]')))
abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
cat('\n')
cat('\n')
# Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
# NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
# be noisy for single clicks
# reducing wl can give more accurate noise floor but 'smoother' spectrum
# increasing wl will give more exact spectrum but may exclude too many
# clicks based on SNR (noise measure will overlap with click output; noise
# is just measured as same wl from start of binary snippet and binaries
# binary snippets are v short)
# Trial and error - 256 works ok for LLHARP data = 1.28 ms
# NB: JLKM uses 500 for beaked whales with samp rate 288k
avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256,
channel = params$channelNum, norm = TRUE,
noise = TRUE, sort = TRUE, snr = 15,
plot = c(TRUE, FALSE))
# concatenated spectrogram will get plotted within calculation
# avg spectrum plots separately (bc adding stuff)
if (!is.null(avgSpec)) {
# Peak freq as calculated by calculateAvgerageSpectra -for subtitle
peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0),
xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)',
main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
# add grid lines for frequency at 10 kHz intervals
for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
# add template spectra
if (length(refSpecs) > 0){
rsCols <- rsPalette[1:length(refSpecs)]
for (rs in 1:length(refSpecs)){
rsTmp <- refSpecList[rs]
rsNorm <- refSpecs[[rsTmp]]
rsMax <- max(rsNorm$dB)
rsNorm$dBNorm <- rsNorm$dB - rsMax
lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
}
}
# plot noise
lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
# plot avg spectrum
lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
# also plot median spectrum
medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
median(10^(y/20), na.rm = TRUE)}))
medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
# add legend
if (length(refSpecs) > 0){
legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
lty = c(rep(1, length(refSpecs)), 2, 1, 3),
lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
} else if (length(refSpecs) == 0){
legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
lty = c(2, 1, 3), lwd = c(2, 3, 2),
col = c('black', 'black', 'black'), cex = 0.8)
}
}
# NB: JLKM BW approach has additional plots here:
# IPI
# Waveform of strongest click
# Wigner plot
# We are not including those here because not really useful for FKW, but if
# interested in adding back in, see:
# https://github.com/jlkeating/PAMGuard_Event_Code
cat('\n')
cat('\n')
# create median stats table for clicks with -15 dB TK noise cut off
cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with',
'SNR >= 15 dB.')
cat('\n')
cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l',
row.names = FALSE) %>%
kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
full_width = F))
} else { # no good clicks so no summary plots/table
cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
}
###### whistle plots and table ######
#
# cat('\n##### Whistle plots and table\n')
#
# # if whistles present ...
# if (wl$nWhistles > 0) {
# # create median stats table for all whistles
# # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
# # cat('\n')
#
# # plot whistle contours
# # map the needed binary files
# binFiles <- dets@events[[eventUID]]@files$binaries
# wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
# binFiles)
# wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
#
# # load them
# whBin <- loadMultiBinaries(wmFiles)
# # trim to just the event time
# whBinEv <- whBin[names(whBin) %in%
# detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
#
# # #plot - ggplot version/functionized
# # pc <- plotContours(whBinEv)
# # # print(pc)
# # pc + ggtitle(eventUID)
# #
#
# # get plot limits
# # xMax <- 0
# # yMax <- 0
# # for (wc in 1:length(names(whBinEv))){
# # df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# # freq = whBinEv[[wc]]$freq/1000)
# # xMaxTmp <- max(df$time)
# # yMaxTmp <- max(df$freq)
# # if (xMaxTmp > xMax){xMax <- xMaxTmp}
# # if (yMaxTmp > yMax){yMax <- yMaxTmp}
# # }
# # or use standard max lims
# xMax <- 1.5
# yMax <- 20
#
# # plot each line
# plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)),
# xlab = 'Time (s)', ylab = 'Frequency (kHz)',
# main = 'Whistle Contours')
# # add grid lines for frequency at 0.125 s and 5 kHz intervals
# for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
# col="lightgray")}
# for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
# col="lightgray")}
# # loop through each contour
# for (wc in 1:length(names(whBinEv))){
# df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# freq = whBinEv[[wc]]$freq/1000)
# lines(df$time, df$freq, col = rgb(0,0,0,0.4))
# }
#
# # plot histogram of median frequency
# hist(wl$wh$freqMedian/1000,
# breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
# main = 'Histogram of whistle median frequency',
# xlab = 'Median frequency (kHz)')
#
# cat('\n')
# cat('\n')
#
# cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
# # create median stats table for all whistles
# cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l',
# row.names = FALSE) %>%
# kable_styling(bootstrap_options = c('basic', 'condensed'),
# full_width = F))
#
# } else {
# cat('\nNo whistles present.\n')
# }
cat('\n')
cat('\n\n --- \n\n')
cat('\n')
}# num clicks/peak freq check
} # loop
Time: 2024-08-20 13:42UTC to 2024-08-20 13:47UTC
Event contains 1302 original clicks, 651 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 441 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.21 |
| Median 10dB Center Frequency [kHz] | 6.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.63 - 6.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (4.29 - 7.92) |
| Median duration [μs] (25-75 percentile) | 36 (0 - 1000) |
Time: 2024-08-20 13:48UTC to 2024-08-20 13:54UTC
Event contains 1156 original clicks, 578 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 396 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.23 |
| Median 10dB Center Frequency [kHz] | 6.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (5.65 - 6.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.14 (4.52 - 7.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 345) |
Time: 2024-08-20 13:54UTC to 2024-08-20 14:00UTC
Event contains 1036 original clicks, 518 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 366 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 5.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.18 - 6.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.3 (4.36 - 7.73) |
| Median duration [μs] (25-75 percentile) | 16 (0 - 446) |
Time: 2024-08-20 14:00UTC to 2024-08-20 14:05UTC
Event contains 636 original clicks, 318 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 209 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.2 |
| Median 10dB Center Frequency [kHz] | 6.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.37 - 7.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (4.03 - 8.39) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 169) |
Time: 2024-08-20 14:06UTC to 2024-08-20 14:12UTC
Event contains 494 original clicks, 247 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 186 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.43 |
| Median 10dB Center Frequency [kHz] | 6.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (5.75 - 7.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (4.41 - 8.43) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 122) |
Time: 2024-08-20 14:12UTC to 2024-08-20 14:18UTC
Event contains 660 original clicks, 330 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 240 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.9 |
| Median 10dB Center Frequency [kHz] | 6.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 ( 6 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 (4.51 - 8.98) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 227) |
Time: 2024-08-20 14:18UTC to 2024-08-20 14:23UTC
Event contains 1166 original clicks, 583 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 446 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.96 |
| Median 10dB Center Frequency [kHz] | 6.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.35 - 7.59) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.3 (4.82 - 8.97) |
| Median duration [μs] (25-75 percentile) | 33 (0 - 398) |
Time: 2024-08-20 14:24UTC to 2024-08-20 14:30UTC
Event contains 1620 original clicks, 810 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 637 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.32 |
| Median 10dB Center Frequency [kHz] | 7.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (6.69 - 8.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (5.46 - 9.25) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 229) |
Time: 2024-08-20 14:30UTC to 2024-08-20 14:35UTC
Event contains 1364 original clicks, 682 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 515 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 7.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (6.34 - 7.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.07 (5.34 - 8.91) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 155) |
Time: 2024-08-20 14:36UTC to 2024-08-20 14:42UTC
Event contains 1428 original clicks, 714 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 490 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.41 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.84 - 7.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.15 (4.65 - 8.06) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 31) |
Time: 2024-08-20 14:42UTC to 2024-08-20 14:48UTC
Event contains 636 original clicks, 318 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 253 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.81 |
| Median 10dB Center Frequency [kHz] | 7.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (5.94 - 7.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.49 (4.57 - 9.43) |
| Median duration [μs] (25-75 percentile) | 23 (0 - 180) |
Time: 2024-08-20 14:48UTC to 2024-08-20 14:54UTC
Event contains 1296 original clicks, 648 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 516 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 6.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 ( 6.3 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (4.53 - 9.29) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 142) |
Time: 2024-08-20 14:54UTC to 2024-08-20 14:59UTC
Event contains 3090 original clicks, 1545 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1235 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.1 |
| Median 10dB Center Frequency [kHz] | 6.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (5.51 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 (4.19 - 7.59) |
| Median duration [μs] (25-75 percentile) | 7.8 (0 - 420) |
Time: 2024-08-20 15:00UTC to 2024-08-20 15:06UTC
Event contains 3406 original clicks, 1703 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1349 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.82 - 7.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.12 (4.79 - 8.13) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 331) |
Time: 2024-08-20 15:06UTC to 2024-08-20 15:12UTC
Event contains 4026 original clicks, 2013 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1672 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.49 |
| Median 10dB Center Frequency [kHz] | 6.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.85 - 7.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.37 (4.68 - 8.57) |
| Median duration [μs] (25-75 percentile) | 25 (0 - 422) |
Time: 2024-08-20 15:12UTC to 2024-08-20 15:17UTC
Event contains 2710 original clicks, 1355 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1149 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.42 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.82 - 7.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.97 (5.15 - 8.46) |
| Median duration [μs] (25-75 percentile) | 29 (0 - 386) |
Time: 2024-08-20 15:18UTC to 2024-08-20 15:24UTC
Event contains 1274 original clicks, 637 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 535 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.29 |
| Median 10dB Center Frequency [kHz] | 7.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.72 - 7.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.33 (5.76 - 9.22) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 196) |
Time: 2024-08-20 15:24UTC to 2024-08-20 15:29UTC
Event contains 846 original clicks, 423 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 310 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.52 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.968 (5.97 - 7.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.03 (4.79 - 8.14) |
| Median duration [μs] (25-75 percentile) | 85 (0 - 1000) |
Time: 2024-08-20 15:30UTC to 2024-08-20 15:36UTC
Event contains 2802 original clicks, 1401 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1146 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.16 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.44 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.65 (5.11 - 9.22) |
| Median duration [μs] (25-75 percentile) | 198 (0 - 1000) |
Time: 2024-08-20 15:36UTC to 2024-08-20 15:42UTC
Event contains 3762 original clicks, 1881 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1661 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.12 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.38 - 7.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.66 (5.14 - 9.26) |
| Median duration [μs] (25-75 percentile) | 435 (36 - 1000) |
Time: 2024-08-20 15:42UTC to 2024-08-20 15:48UTC
Event contains 3858 original clicks, 1929 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1722 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.98 |
| Median 10dB Center Frequency [kHz] | 6.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.21 - 7.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (4.66 - 9.14) |
| Median duration [μs] (25-75 percentile) | 497 (24 - 1264) |
Time: 2024-08-20 15:48UTC to 2024-08-20 15:53UTC
Event contains 4414 original clicks, 2207 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1951 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.82 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.09 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.9 (4.72 - 9.11) |
| Median duration [μs] (25-75 percentile) | 63 (0 - 1000) |
Time: 2024-08-20 15:54UTC to 2024-08-20 16:00UTC
Event contains 3350 original clicks, 1675 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1522 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.72 |
| Median 10dB Center Frequency [kHz] | 6.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.05 - 7.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.82 (4.73 - 9.03) |
| Median duration [μs] (25-75 percentile) | 81 (0 - 466) |
Time: 2024-08-20 16:00UTC to 2024-08-20 16:06UTC
Event contains 3344 original clicks, 1672 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1485 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.85 |
| Median 10dB Center Frequency [kHz] | 7.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (6.02 - 7.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.3 (4.39 - 9.46) |
| Median duration [μs] (25-75 percentile) | 162 (0 - 1000) |
Time: 2024-08-20 16:06UTC to 2024-08-20 16:11UTC
Event contains 2312 original clicks, 1156 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1004 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.24 - 7.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.25 (4.31 - 9.46) |
| Median duration [μs] (25-75 percentile) | 34 (0 - 287) |
Time: 2024-08-20 16:12UTC to 2024-08-20 16:18UTC
Event contains 3106 original clicks, 1553 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1349 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.01 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (6.36 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.85 (4.82 - 9.25) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 321) |
Time: 2024-08-20 16:18UTC to 2024-08-20 16:24UTC
Event contains 2474 original clicks, 1237 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1089 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.06 |
| Median 10dB Center Frequency [kHz] | 7.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.37 - 7.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.35 (4.67 - 9.43) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 224) |
Time: 2024-08-20 16:24UTC to 2024-08-20 16:29UTC
Event contains 2624 original clicks, 1312 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1222 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 ( 6.1 - 7.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.21 ( 4.6 - 9.17) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 209) |
Time: 2024-08-20 16:30UTC to 2024-08-20 16:36UTC
Event contains 2544 original clicks, 1272 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1164 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.48 |
| Median 10dB Center Frequency [kHz] | 6.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.76 - 7.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (4.15 - 8.77) |
| Median duration [μs] (25-75 percentile) | 16 (0 - 490) |
Time: 2024-08-20 16:36UTC to 2024-08-20 16:41UTC
Event contains 2994 original clicks, 1497 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1343 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 6.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.27 - 7.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.88 ( 4.8 - 9.03) |
| Median duration [μs] (25-75 percentile) | 52 (0 - 497) |
Time: 2024-08-20 16:42UTC to 2024-08-20 16:48UTC
Event contains 3580 original clicks, 1790 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1630 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.82 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.09 - 7.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.29 (4.29 - 9.31) |
| Median duration [μs] (25-75 percentile) | 175 (0 - 1000) |
Time: 2024-08-20 16:48UTC to 2024-08-20 16:54UTC
Event contains 3042 original clicks, 1521 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1357 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.9 |
| Median 10dB Center Frequency [kHz] | 7.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (6.13 - 7.78) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.68 (4.42 - 9.6) |
| Median duration [μs] (25-75 percentile) | 373 (0 - 1382) |
Time: 2024-08-20 16:54UTC to 2024-08-20 16:59UTC
Event contains 3898 original clicks, 1949 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1660 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7 |
| Median 10dB Center Frequency [kHz] | 7.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.16 - 7.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.4 (4.46 - 9.73) |
| Median duration [μs] (25-75 percentile) | 133 (0 - 1000) |
Time: 2024-08-20 17:00UTC to 2024-08-20 17:06UTC
Event contains 4094 original clicks, 2047 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1856 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.72 |
| Median 10dB Center Frequency [kHz] | 6.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.05 - 7.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.91 (4.36 - 9.02) |
| Median duration [μs] (25-75 percentile) | 179 (0 - 1000) |
Time: 2024-08-20 17:06UTC to 2024-08-20 17:12UTC
Event contains 5092 original clicks, 2546 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2344 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.73 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (5.98 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.8 (4.22 - 9.55) |
| Median duration [μs] (25-75 percentile) | 534 (28 - 1669) |
Time: 2024-08-20 17:12UTC to 2024-08-20 17:17UTC
Event contains 3588 original clicks, 1794 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1607 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.62 |
| Median 10dB Center Frequency [kHz] | 7.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (6.62 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.75 ( 4.5 - 10.1) |
| Median duration [μs] (25-75 percentile) | 435 (16 - 1434) |
Time: 2024-08-20 17:18UTC to 2024-08-20 17:23UTC
Event contains 4116 original clicks, 2058 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1921 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.48 |
| Median 10dB Center Frequency [kHz] | 7.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (6.56 - 8.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.75 (4.56 - 10) |
| Median duration [μs] (25-75 percentile) | 302 (34 - 1000) |
Time: 2024-08-20 17:24UTC to 2024-08-20 17:30UTC
Event contains 2632 original clicks, 1316 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1166 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.78 |
| Median 10dB Center Frequency [kHz] | 7.74 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (7.09 - 8.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.69 (5.06 - 10) |
| Median duration [μs] (25-75 percentile) | 343 (0 - 1159) |
Time: 2024-08-20 17:30UTC to 2024-08-20 17:36UTC
Event contains 1686 original clicks, 843 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 755 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 7.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (6.67 - 8.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.31 (5.12 - 9.52) |
| Median duration [μs] (25-75 percentile) | 63 (0 - 342) |
Time: 2024-08-20 17:36UTC to 2024-08-20 17:41UTC
Event contains 686 original clicks, 343 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 275 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 6.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.35 - 6.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3 (4.05 - 7.72) |
| Median duration [μs] (25-75 percentile) | 5.2 (0 - 1000) |
Time: 2024-08-20 17:42UTC to 2024-08-20 17:48UTC
Event contains 2866 original clicks, 1433 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1201 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (6.53 - 8.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.28 (4.65 - 9.83) |
| Median duration [μs] (25-75 percentile) | 182 (0 - 1000) |
Time: 2024-08-20 17:48UTC to 2024-08-20 17:54UTC
Event contains 3898 original clicks, 1949 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1693 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.38 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (6.67 - 8.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.15 (4.56 - 9.37) |
| Median duration [μs] (25-75 percentile) | 258 (0 - 1000) |
Time: 2024-08-20 17:54UTC to 2024-08-20 18:00UTC
Event contains 3264 original clicks, 1632 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1471 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.54 |
| Median 10dB Center Frequency [kHz] | 7.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 ( 6.7 - 8.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.47 ( 4.6 - 9.38) |
| Median duration [μs] (25-75 percentile) | 269 (0 - 1000) |
Time: 2024-08-20 18:00UTC to 2024-08-20 18:06UTC
Event contains 2968 original clicks, 1484 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1351 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.34 |
| Median 10dB Center Frequency [kHz] | 7.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (6.26 - 8.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.5 (4.24 - 9.53) |
| Median duration [μs] (25-75 percentile) | 446 (100 - 1108) |
Time: 2024-08-20 18:06UTC to 2024-08-20 18:12UTC
Event contains 3250 original clicks, 1625 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1520 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.59 |
| Median 10dB Center Frequency [kHz] | 7.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (6.73 - 8.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.47 ( 4.8 - 10.2) |
| Median duration [μs] (25-75 percentile) | 364 (100 - 1000) |
Time: 2024-08-20 18:12UTC to 2024-08-20 18:18UTC
Event contains 3310 original clicks, 1655 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1476 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.55 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (5.67 - 7.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.99 (3.81 - 8.93) |
| Median duration [μs] (25-75 percentile) | 574 (100 - 1129) |
Time: 2024-08-20 18:18UTC to 2024-08-20 18:24UTC
Event contains 2550 original clicks, 1275 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1148 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.5 |
| Median 10dB Center Frequency [kHz] | 7.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (6.59 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.65 (4.47 - 10.1) |
| Median duration [μs] (25-75 percentile) | 321 (100 - 1011) |
Time: 2024-08-20 18:24UTC to 2024-08-20 18:30UTC
Event contains 838 original clicks, 419 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 346 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.13 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.29 - 7.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.18 (4.55 - 9.54) |
| Median duration [μs] (25-75 percentile) | 255 (40 - 1000) |
Time: 2024-08-20 18:30UTC to 2024-08-20 18:36UTC
Event contains 1198 original clicks, 599 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 484 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.01 |
| Median 10dB Center Frequency [kHz] | 6.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.41 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 ( 4.2 - 8.21) |
| Median duration [μs] (25-75 percentile) | 210 (0 - 1000) |
Time: 2024-08-20 18:36UTC to 2024-08-20 18:42UTC
Event contains 2502 original clicks, 1251 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1108 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.25 |
| Median 10dB Center Frequency [kHz] | 6.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (6.54 - 8.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.07 (4.56 - 9.2) |
| Median duration [μs] (25-75 percentile) | 253 (21 - 1000) |
Time: 2024-08-20 18:42UTC to 2024-08-20 18:48UTC
Event contains 3228 original clicks, 1614 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1490 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.32 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.41 - 8.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (4.55 - 9.46) |
| Median duration [μs] (25-75 percentile) | 405 (22 - 1030) |
Time: 2024-08-20 18:48UTC to 2024-08-20 18:54UTC
Event contains 3004 original clicks, 1502 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1337 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.69 |
| Median 10dB Center Frequency [kHz] | 7.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (6.86 - 8.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.13 (4.53 - 10.2) |
| Median duration [μs] (25-75 percentile) | 193 (0 - 1181) |
Time: 2024-08-20 18:54UTC to 2024-08-20 18:59UTC
Event contains 3798 original clicks, 1899 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1576 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 7.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (6.74 - 8.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (4.91 - 9.95) |
| Median duration [μs] (25-75 percentile) | 214 (0 - 1015) |
Time: 2024-08-20 19:00UTC to 2024-08-20 19:06UTC
Event contains 3560 original clicks, 1780 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1536 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.83 |
| Median 10dB Center Frequency [kHz] | 7.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (7.15 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.91 (5.25 - 9.77) |
| Median duration [μs] (25-75 percentile) | 164 (0 - 1070) |
Time: 2024-08-20 19:06UTC to 2024-08-20 19:12UTC
Event contains 2968 original clicks, 1484 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1416 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.38 |
| Median 10dB Center Frequency [kHz] | 8.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (7.53 - 9.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (5.81 - 10.5) |
| Median duration [μs] (25-75 percentile) | 368 (0 - 1363) |
Time: 2024-08-20 19:12UTC to 2024-08-20 19:18UTC
Event contains 2860 original clicks, 1430 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1344 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.25 |
| Median 10dB Center Frequency [kHz] | 8.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (7.45 - 9.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.52 (5.11 - 10.7) |
| Median duration [μs] (25-75 percentile) | 312 (0 - 1393) |
Time: 2024-08-20 19:18UTC to 2024-08-20 19:24UTC
Event contains 2114 original clicks, 1057 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 970 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.15 |
| Median 10dB Center Frequency [kHz] | 8.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (7.51 - 8.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.66 (6.03 - 9.9) |
| Median duration [μs] (25-75 percentile) | 59 (0 - 1000) |
Time: 2024-08-20 19:24UTC to 2024-08-20 19:29UTC
Event contains 560 original clicks, 280 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 224 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.09 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (3.98 - 8) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-20 19:30UTC to 2024-08-20 19:35UTC
Event contains 1900 original clicks, 950 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 727 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.91 |
| Median 10dB Center Frequency [kHz] | 6.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (5.98 - 7.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.88 (4.52 - 9.08) |
| Median duration [μs] (25-75 percentile) | 91 (0 - 1000) |
Time: 2024-08-20 19:36UTC to 2024-08-20 19:42UTC
Event contains 2582 original clicks, 1291 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1199 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.76 |
| Median 10dB Center Frequency [kHz] | 8.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (7.83 - 9.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.18 (6.26 - 11) |
| Median duration [μs] (25-75 percentile) | 219 (0 - 1376) |
Time: 2024-08-20 19:42UTC to 2024-08-20 19:48UTC
Event contains 2706 original clicks, 1353 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1279 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.14 |
| Median 10dB Center Frequency [kHz] | 8.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (7.19 - 8.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.07 (5.65 - 10.4) |
| Median duration [μs] (25-75 percentile) | 1230 (31 - 2384) |
Time: 2024-08-20 19:48UTC to 2024-08-20 19:54UTC
Event contains 2632 original clicks, 1316 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1139 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 6.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (5.31 - 6.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.3 (3.75 - 8.28) |
| Median duration [μs] (25-75 percentile) | 1051 (145 - 2001) |
Time: 2024-08-20 19:54UTC to 2024-08-20 19:59UTC
Event contains 2788 original clicks, 1394 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1147 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.1 |
| Median 10dB Center Frequency [kHz] | 7.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 ( 6.3 - 8.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.55 (4.31 - 9.85) |
| Median duration [μs] (25-75 percentile) | 907 (201 - 2028) |
Time: 2024-08-20 20:00UTC to 2024-08-20 20:06UTC
Event contains 2304 original clicks, 1152 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 994 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.85 |
| Median 10dB Center Frequency [kHz] | 7.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (6.89 - 8.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.81 ( 4.7 - 10.3) |
| Median duration [μs] (25-75 percentile) | 562 (100 - 1664) |
Time: 2024-08-20 20:06UTC to 2024-08-20 20:12UTC
Event contains 2534 original clicks, 1267 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1084 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.77 |
| Median 10dB Center Frequency [kHz] | 7.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (6.81 - 8.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.38 (4.57 - 9.96) |
| Median duration [μs] (25-75 percentile) | 647 (124 - 1887) |
Time: 2024-08-20 20:12UTC to 2024-08-20 20:18UTC
Event contains 1882 original clicks, 941 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 830 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.4 |
| Median 3dB Center Frequency [kHz] | 7.23 |
| Median 10dB Center Frequency [kHz] | 7.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 ( 6.2 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (4.06 - 9.44) |
| Median duration [μs] (25-75 percentile) | 468 (100 - 1133) |
Time: 2024-08-20 20:30UTC to 2024-08-20 20:36UTC
Event contains 1728 original clicks, 864 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 775 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.52 |
| Median 10dB Center Frequency [kHz] | 7.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (6.61 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.07 (4.46 - 9.97) |
| Median duration [μs] (25-75 percentile) | 501 (181 - 1249) |
Time: 2024-08-20 20:36UTC to 2024-08-20 20:42UTC
Event contains 2166 original clicks, 1083 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 885 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.81 |
| Median 10dB Center Frequency [kHz] | 8.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (6.99 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.63 (5.03 - 10.6) |
| Median duration [μs] (25-75 percentile) | 302 (100 - 1000) |
Time: 2024-08-20 20:42UTC to 2024-08-20 20:47UTC
Event contains 1770 original clicks, 885 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 814 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.24 |
| Median 10dB Center Frequency [kHz] | 7.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (6.29 - 8.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.44 (4.02 - 9.67) |
| Median duration [μs] (25-75 percentile) | 733 (344 - 1338) |
Time: 2024-08-20 20:48UTC to 2024-08-20 20:54UTC
Event contains 1364 original clicks, 682 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 644 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.77 |
| Median 10dB Center Frequency [kHz] | 6.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.67 (5.81 - 7.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.71 (3.63 - 9.24) |
| Median duration [μs] (25-75 percentile) | 746 (315 - 1558) |
Time: 2024-08-20 20:54UTC to 2024-08-20 21:00UTC
Event contains 1334 original clicks, 667 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 633 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.25 |
| Median 10dB Center Frequency [kHz] | 8.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.66 (7.33 - 9.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.18 (4.93 - 11.1) |
| Median duration [μs] (25-75 percentile) | 714 (284 - 1155) |
Time: 2024-08-20 21:00UTC to 2024-08-20 21:06UTC
Event contains 1170 original clicks, 585 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 551 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.3 |
| Median 10dB Center Frequency [kHz] | 6.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.7 (5.16 - 7.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.82 (2.85 - 9.35) |
| Median duration [μs] (25-75 percentile) | 641 (263 - 1245) |
Time: 2024-08-20 21:06UTC to 2024-08-20 21:11UTC
Event contains 762 original clicks, 381 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 344 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.61 (6.14 - 7.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.37 (4.02 - 9.57) |
| Median duration [μs] (25-75 percentile) | 225 (100 - 1000) |
Time: 2024-08-20 21:24UTC to 2024-08-20 21:29UTC
Event contains 1360 original clicks, 680 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 585 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 ( 5.1 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.17 (3.46 - 8.8) |
| Median duration [μs] (25-75 percentile) | 383 (117 - 1000) |
Time: 2024-08-20 21:36UTC to 2024-08-20 21:42UTC
Event contains 1878 original clicks, 939 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 744 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.4 |
| Median 10dB Center Frequency [kHz] | 6.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.63 - 7.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.71 (3.57 - 8.34) |
| Median duration [μs] (25-75 percentile) | 477 (100 - 1408) |
Time: 2024-08-20 21:54UTC to 2024-08-20 22:00UTC
Event contains 1216 original clicks, 608 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 497 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 6.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (5.18 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.17 (3.73 - 8.52) |
| Median duration [μs] (25-75 percentile) | 652 (201 - 1350) |
Time: 2024-08-20 22:00UTC to 2024-08-20 22:05UTC
Event contains 1264 original clicks, 632 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 507 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.57 |
| Median 10dB Center Frequency [kHz] | 6.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (5.86 - 7.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.44 (3.95 - 9.1) |
| Median duration [μs] (25-75 percentile) | 420 (147 - 1121) |
Time: 2024-08-20 22:06UTC to 2024-08-20 22:12UTC
Event contains 1046 original clicks, 523 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 330 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 5.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.38 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.2 (4.03 - 7.77) |
| Median duration [μs] (25-75 percentile) | 504 (14 - 1235) |
Time: 2024-08-20 22:12UTC to 2024-08-20 22:18UTC
Event contains 790 original clicks, 395 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 269 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.62 |
| Median 10dB Center Frequency [kHz] | 5.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.08 - 6.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (3.91 - 7.5) |
| Median duration [μs] (25-75 percentile) | 487 (0 - 1202) |
Time: 2024-08-20 22:42UTC to 2024-08-20 22:47UTC
Event contains 842 original clicks, 421 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 369 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.32 - 6.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.95 (3.57 - 8) |
| Median duration [μs] (25-75 percentile) | 592 (123 - 1022) |
Time: 2024-08-21 00:36UTC to 2024-08-21 00:42UTC
Event contains 416 original clicks, 208 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 146 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 5.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.16 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.61 (3.94 - 8.01) |
| Median duration [μs] (25-75 percentile) | 760 (100 - 1691) |
Time: 2024-08-21 10:24UTC to 2024-08-21 10:30UTC
Event contains 1580 original clicks, 790 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 537 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.72 - 7.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (4.67 - 8.93) |
| Median duration [μs] (25-75 percentile) | 683 (143 - 1439) |
Time: 2024-08-21 10:30UTC to 2024-08-21 10:35UTC
Event contains 3832 original clicks, 1916 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1178 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.74 |
| Median 10dB Center Frequency [kHz] | 5.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.13 - 6.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.16 (4.19 - 7.49) |
| Median duration [μs] (25-75 percentile) | 1486 (1017 - 2099) |
Time: 2024-08-21 19:54UTC to 2024-08-21 20:00UTC
Event contains 406 original clicks, 203 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 140 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7 |
| Median 3dB Center Frequency [kHz] | 6.94 |
| Median 10dB Center Frequency [kHz] | 6.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (6.38 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.24 (5.11 - 8.26) |
| Median duration [μs] (25-75 percentile) | 1966 (1245 - 2355) |
Time: 2024-08-21 20:00UTC to 2024-08-21 20:05UTC
Event contains 538 original clicks, 269 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 149 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.73 |
| Median 10dB Center Frequency [kHz] | 6.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.17 - 6.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.52 (4.25 - 7.82) |
| Median duration [μs] (25-75 percentile) | 2174 (1405 - 2406) |
Time: 2024-08-22 03:48UTC to 2024-08-22 03:54UTC
Event contains 418 original clicks, 209 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 132 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.19 |
| Median 10dB Center Frequency [kHz] | 7.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 ( 6.5 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.1 (5.33 - 9.9) |
| Median duration [μs] (25-75 percentile) | 7.8 (0 - 110) |
Time: 2024-08-23 01:54UTC to 2024-08-23 02:00UTC
Event contains 2710 original clicks, 1355 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 695 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 6.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.23 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.21 (3.76 - 8.46) |
| Median duration [μs] (25-75 percentile) | 164 (17 - 487) |
Time: 2024-08-23 02:00UTC to 2024-08-23 02:06UTC
Event contains 3474 original clicks, 1737 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 808 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.36 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.65 (3.94 - 8.14) |
| Median duration [μs] (25-75 percentile) | 184 (20 - 441) |
Time: 2024-08-23 02:06UTC to 2024-08-23 02:12UTC
Event contains 518 original clicks, 259 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 149 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.36 |
| Median 10dB Center Frequency [kHz] | 6.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (5.75 - 7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (3.63 - 9.51) |
| Median duration [μs] (25-75 percentile) | 501 (104 - 1254) |
Time: 2024-08-23 13:42UTC to 2024-08-23 13:48UTC
Event contains 744 original clicks, 372 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 332 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 6.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.26 - 6.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.14 (4.27 - 7.62) |
| Median duration [μs] (25-75 percentile) | 1799 (1257 - 2288) |
Time: 2024-08-23 14:00UTC to 2024-08-23 14:06UTC
Event contains 742 original clicks, 371 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 241 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 6.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.43 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.18 ( 4.2 - 7.91) |
| Median duration [μs] (25-75 percentile) | 2075 (1139 - 2401) |
Time: 2024-08-23 14:18UTC to 2024-08-23 14:24UTC
Event contains 1870 original clicks, 935 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 668 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.71 |
| Median 10dB Center Frequency [kHz] | 5.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.957 (5.13 - 6.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.83 (4.18 - 7.43) |
| Median duration [μs] (25-75 percentile) | 2003 (1318 - 2409) |
Time: 2024-08-23 14:54UTC to 2024-08-23 15:00UTC
Event contains 3260 original clicks, 1630 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1248 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.81 |
| Median 10dB Center Frequency [kHz] | 5.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.915 (5.25 - 6.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 (4.33 - 7.39) |
| Median duration [μs] (25-75 percentile) | 2179 (1577 - 2440) |
Time: 2024-08-23 15:06UTC to 2024-08-23 15:12UTC
Event contains 2196 original clicks, 1098 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 816 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.893 (5.41 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (4.44 - 7.64) |
| Median duration [μs] (25-75 percentile) | 2092 (1344 - 2417) |
Time: 2024-08-23 15:18UTC to 2024-08-23 15:24UTC
Event contains 3204 original clicks, 1602 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1249 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.22 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.898 (5.71 - 6.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.64 (4.47 - 7.62) |
| Median duration [μs] (25-75 percentile) | 2148 (1387 - 2437) |
Time: 2024-08-23 15:24UTC to 2024-08-23 15:30UTC
Event contains 2916 original clicks, 1458 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1243 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 5.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.89 (5.45 - 6.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.73 (4.42 - 7.5) |
| Median duration [μs] (25-75 percentile) | 2086 (1378 - 2422) |
Time: 2024-08-23 15:30UTC to 2024-08-23 15:36UTC
Event contains 762 original clicks, 381 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 330 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.821 (5.41 - 6.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.41 (4.53 - 7.51) |
| Median duration [μs] (25-75 percentile) | 1867 (1224 - 2286) |
Time: 2024-08-23 15:42UTC to 2024-08-23 15:48UTC
Event contains 2994 original clicks, 1497 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1266 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.22 |
| Median 10dB Center Frequency [kHz] | 6.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.921 (5.69 - 6.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.72 ( 4.5 - 7.65) |
| Median duration [μs] (25-75 percentile) | 2130 (1410 - 2430) |
Time: 2024-08-23 15:48UTC to 2024-08-23 15:54UTC
Event contains 3760 original clicks, 1880 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1503 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.24 |
| Median 10dB Center Frequency [kHz] | 6.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.907 (5.74 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.7 (4.56 - 7.86) |
| Median duration [μs] (25-75 percentile) | 2091 (1362 - 2419) |
Time: 2024-08-23 15:54UTC to 2024-08-23 16:00UTC
Event contains 2310 original clicks, 1155 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 972 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.43 |
| Median 10dB Center Frequency [kHz] | 6.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.985 (5.86 - 7.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.82 (4.49 - 8.1) |
| Median duration [μs] (25-75 percentile) | 1795 (1009 - 2354) |
Time: 2024-08-23 16:00UTC to 2024-08-23 16:06UTC
Event contains 3050 original clicks, 1525 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1322 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.94 |
| Median 10dB Center Frequency [kHz] | 6.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.964 ( 5.3 - 6.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.82 (4.34 - 7.72) |
| Median duration [μs] (25-75 percentile) | 1904 (1082 - 2367) |
Time: 2024-08-23 16:06UTC to 2024-08-23 16:12UTC
Event contains 2322 original clicks, 1161 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 990 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.19 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.996 (5.51 - 6.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.05 (4.42 - 7.98) |
| Median duration [μs] (25-75 percentile) | 1856 (1146 - 2340) |
Time: 2024-08-23 16:12UTC to 2024-08-23 16:18UTC
Event contains 2922 original clicks, 1461 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1280 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.44 |
| Median 10dB Center Frequency [kHz] | 6.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.915 (5.89 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (4.83 - 7.99) |
| Median duration [μs] (25-75 percentile) | 1719 (1000 - 2364) |
Time: 2024-08-23 16:18UTC to 2024-08-23 16:24UTC
Event contains 1868 original clicks, 934 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 771 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.22 |
| Median 10dB Center Frequency [kHz] | 6.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.917 (5.62 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.73 (4.74 - 7.78) |
| Median duration [μs] (25-75 percentile) | 1640 (1000 - 2291) |
Time: 2024-08-23 16:36UTC to 2024-08-23 16:42UTC
Event contains 2306 original clicks, 1153 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1029 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.62 |
| Median 10dB Center Frequency [kHz] | 6.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.968 (6.01 - 7.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.83 (4.83 - 8.2) |
| Median duration [μs] (25-75 percentile) | 1512 (308 - 2284) |
Time: 2024-08-23 16:42UTC to 2024-08-23 16:48UTC
Event contains 2386 original clicks, 1193 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1079 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1 (5.59 - 6.83) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.67 (4.56 - 7.93) |
| Median duration [μs] (25-75 percentile) | 1616 (310 - 2361) |
Time: 2024-08-23 16:48UTC to 2024-08-23 16:54UTC
Event contains 2186 original clicks, 1093 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 953 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.34 |
| Median 10dB Center Frequency [kHz] | 6.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.965 (5.79 - 6.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 (4.57 - 7.96) |
| Median duration [μs] (25-75 percentile) | 1546 (368 - 2260) |
Time: 2024-08-23 16:54UTC to 2024-08-23 17:00UTC
Event contains 2844 original clicks, 1422 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1262 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.65 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 ( 6.1 - 7.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.68 ( 5.1 - 8.19) |
| Median duration [μs] (25-75 percentile) | 1632 (1000 - 2299) |
Time: 2024-08-23 17:00UTC to 2024-08-23 17:06UTC
Event contains 2692 original clicks, 1346 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1167 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.32 |
| Median 10dB Center Frequency [kHz] | 6.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.67 - 6.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.86 (4.67 - 8.1) |
| Median duration [μs] (25-75 percentile) | 1700 (1000 - 2332) |
Time: 2024-08-23 17:06UTC to 2024-08-23 17:12UTC
Event contains 2460 original clicks, 1230 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1088 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.62 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.08 - 7.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 ( 4.8 - 8.45) |
| Median duration [μs] (25-75 percentile) | 1698 (1000 - 2359) |
Time: 2024-08-23 17:12UTC to 2024-08-23 17:18UTC
Event contains 2308 original clicks, 1154 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1009 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.92 - 7.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.02 (4.66 - 8.22) |
| Median duration [μs] (25-75 percentile) | 1812 (1000 - 2388) |
Time: 2024-08-23 17:18UTC to 2024-08-23 17:24UTC
Event contains 1808 original clicks, 904 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 768 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.55 |
| Median 10dB Center Frequency [kHz] | 6.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.972 (5.96 - 7.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.84 (4.63 - 8.19) |
| Median duration [μs] (25-75 percentile) | 1447 (1000 - 2259) |
Time: 2024-08-23 17:24UTC to 2024-08-23 17:30UTC
Event contains 862 original clicks, 431 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 360 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.23 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.9 (5.76 - 6.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.69 (4.65 - 7.73) |
| Median duration [μs] (25-75 percentile) | 1807 (1000 - 2360) |
Time: 2024-08-23 17:30UTC to 2024-08-23 17:36UTC
Event contains 2356 original clicks, 1178 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 984 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 6.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.911 (5.43 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.53 ( 4.2 - 7.68) |
| Median duration [μs] (25-75 percentile) | 2149 (1217 - 2427) |
Time: 2024-08-23 17:36UTC to 2024-08-23 17:42UTC
Event contains 1832 original clicks, 916 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 812 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.93 |
| Median 10dB Center Frequency [kHz] | 6.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (6.32 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.98 (4.73 - 8.46) |
| Median duration [μs] (25-75 percentile) | 1533 (1000 - 2280) |
Time: 2024-08-23 17:42UTC to 2024-08-23 17:48UTC
Event contains 2194 original clicks, 1097 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 995 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 (5.37 - 6.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.98 (4.16 - 7.9) |
| Median duration [μs] (25-75 percentile) | 1624 (1000 - 2354) |
Time: 2024-08-23 17:48UTC to 2024-08-23 17:54UTC
Event contains 2186 original clicks, 1093 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 990 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.9 |
| Median 10dB Center Frequency [kHz] | 6.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 ( 6.3 - 7.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.05 (4.98 - 8.5) |
| Median duration [μs] (25-75 percentile) | 1466 (1000 - 2325) |
Time: 2024-08-23 17:54UTC to 2024-08-23 18:00UTC
Event contains 2508 original clicks, 1254 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1076 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.5 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.91 - 7.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.38 (4.22 - 8.31) |
| Median duration [μs] (25-75 percentile) | 1577 (1000 - 2344) |
Time: 2024-08-23 18:00UTC to 2024-08-23 18:06UTC
Event contains 1682 original clicks, 841 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 745 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.22 |
| Median 10dB Center Frequency [kHz] | 7.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.54 - 7.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (5.06 - 9.02) |
| Median duration [μs] (25-75 percentile) | 1397 (1000 - 2247) |
Time: 2024-08-23 18:06UTC to 2024-08-23 18:12UTC
Event contains 962 original clicks, 481 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 402 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.8 |
| Median 10dB Center Frequency [kHz] | 5.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.987 (5.18 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.95 (3.94 - 7.58) |
| Median duration [μs] (25-75 percentile) | 1580 (1000 - 2184) |
Time: 2024-08-23 18:18UTC to 2024-08-23 18:24UTC
Event contains 2344 original clicks, 1172 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1009 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.87 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.966 (6.22 - 7.46) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.91 (4.78 - 8.39) |
| Median duration [μs] (25-75 percentile) | 1872 (1040 - 2357) |
Time: 2024-08-23 18:24UTC to 2024-08-23 18:30UTC
Event contains 1768 original clicks, 884 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 755 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.58 - 7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.1 (4.52 - 8.26) |
| Median duration [μs] (25-75 percentile) | 1491 (1000 - 2364) |
Time: 2024-08-23 18:30UTC to 2024-08-23 18:36UTC
Event contains 2358 original clicks, 1179 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1037 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.76 |
| Median 10dB Center Frequency [kHz] | 6.59 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.96 (6.17 - 7.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.86 (4.64 - 8.21) |
| Median duration [μs] (25-75 percentile) | 1736 (388 - 2367) |
Time: 2024-08-23 18:36UTC to 2024-08-23 18:42UTC
Event contains 2046 original clicks, 1023 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 911 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.87 |
| Median 10dB Center Frequency [kHz] | 6.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.24 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.92 (4.93 - 8.5) |
| Median duration [μs] (25-75 percentile) | 1752 (1000 - 2355) |
Time: 2024-08-23 18:42UTC to 2024-08-23 18:48UTC
Event contains 1968 original clicks, 984 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 906 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.34 |
| Median 10dB Center Frequency [kHz] | 7.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (6.72 - 7.84) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.98 (5.21 - 8.89) |
| Median duration [μs] (25-75 percentile) | 1538 (1000 - 2291) |
Time: 2024-08-23 18:48UTC to 2024-08-23 18:54UTC
Event contains 1706 original clicks, 853 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 748 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.58 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.966 (5.92 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.88 (4.54 - 8.19) |
| Median duration [μs] (25-75 percentile) | 1976 (1193 - 2394) |
Time: 2024-08-23 19:06UTC to 2024-08-23 19:12UTC
Event contains 2194 original clicks, 1097 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 943 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.98 |
| Median 10dB Center Frequency [kHz] | 6.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.984 (5.48 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.92 (4.39 - 7.81) |
| Median duration [μs] (25-75 percentile) | 2086 (1208 - 2406) |
Time: 2024-08-23 19:12UTC to 2024-08-23 19:18UTC
Event contains 2116 original clicks, 1058 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 916 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.956 (5.96 - 7.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.8 (4.91 - 8.07) |
| Median duration [μs] (25-75 percentile) | 1988 (1128 - 2373) |
Time: 2024-08-23 19:18UTC to 2024-08-23 19:24UTC
Event contains 1652 original clicks, 826 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 694 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.38 |
| Median 10dB Center Frequency [kHz] | 6.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.88 - 7.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.89 (4.88 - 8.07) |
| Median duration [μs] (25-75 percentile) | 1967 (1234 - 2351) |
Time: 2024-08-23 19:24UTC to 2024-08-23 19:30UTC
Event contains 1544 original clicks, 772 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 640 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.919 (5.68 - 6.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.44 (4.35 - 7.59) |
| Median duration [μs] (25-75 percentile) | 1903 (1000 - 2389) |
Time: 2024-08-23 19:42UTC to 2024-08-23 19:48UTC
Event contains 1210 original clicks, 605 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 498 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 5.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.989 (5.53 - 6.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.92 (4.27 - 7.73) |
| Median duration [μs] (25-75 percentile) | 2014 (1303 - 2377) |
Time: 2024-08-23 20:12UTC to 2024-08-23 20:18UTC
Event contains 742 original clicks, 371 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 276 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 5.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.15 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 (3.93 - 7.89) |
| Median duration [μs] (25-75 percentile) | 1752 (1028 - 2275) |
Time: 2024-08-24 07:36UTC to 2024-08-24 07:42UTC
Event contains 1752 original clicks, 876 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 671 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.61 |
| Median 10dB Center Frequency [kHz] | 6.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.932 (6.07 - 7.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.7 (4.88 - 7.96) |
| Median duration [μs] (25-75 percentile) | 2117 (1353 - 2422) |
Time: 2024-08-24 07:42UTC to 2024-08-24 07:48UTC
Event contains 2516 original clicks, 1258 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 995 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 5.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.981 (5.24 - 6.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.89 (3.99 - 7.52) |
| Median duration [μs] (25-75 percentile) | 2049 (1147 - 2445) |
Time: 2024-08-24 07:54UTC to 2024-08-24 08:00UTC
Event contains 1552 original clicks, 776 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 685 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.982 (5.39 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.72 ( 4.3 - 7.59) |
| Median duration [μs] (25-75 percentile) | 1885 (1000 - 2385) |
Time: 2024-08-24 08:06UTC to 2024-08-24 08:12UTC
Event contains 1550 original clicks, 775 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 627 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.948 (5.55 - 6.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.82 (4.17 - 7.82) |
| Median duration [μs] (25-75 percentile) | 2072 (1358 - 2401) |
Time: 2024-08-24 08:12UTC to 2024-08-24 08:18UTC
Event contains 1268 original clicks, 634 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 546 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 6.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.968 (5.36 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.66 (4.49 - 7.57) |
| Median duration [μs] (25-75 percentile) | 2032 (1000 - 2424) |
Time: 2024-08-24 08:36UTC to 2024-08-24 08:42UTC
Event contains 1474 original clicks, 737 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 601 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.03 |
| Median 10dB Center Frequency [kHz] | 5.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.996 (5.51 - 6.57) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.9 (4.41 - 7.43) |
| Median duration [μs] (25-75 percentile) | 2018 (1173 - 2409) |
Time: 2024-08-24 10:36UTC to 2024-08-24 10:42UTC
Event contains 560 original clicks, 280 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 182 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 5.19 |
| Median 10dB Center Frequency [kHz] | 5.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.921 (4.68 - 5.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.76 (3.76 - 7.11) |
| Median duration [μs] (25-75 percentile) | 235 (100 - 1017) |
Time: 2024-08-25 05:54UTC to 2024-08-25 06:00UTC
Event contains 1276 original clicks, 638 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 502 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 7.02 |
| Median 10dB Center Frequency [kHz] | 8.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (6.34 - 7.43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.97 (4.69 - 11.4) |
| Median duration [μs] (25-75 percentile) | 725 (258 - 1313) |
Time: 2024-08-25 11:00UTC to 2024-08-25 11:06UTC
Event contains 2722 original clicks, 1361 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 979 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 5.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.928 (5.27 - 6.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.68 (4.29 - 7.3) |
| Median duration [μs] (25-75 percentile) | 2093 (1483 - 2419) |
Time: 2024-08-25 11:06UTC to 2024-08-25 11:12UTC
Event contains 1388 original clicks, 694 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 502 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.81 |
| Median 10dB Center Frequency [kHz] | 5.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.902 (5.23 - 6.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.61 (4.46 - 7.28) |
| Median duration [μs] (25-75 percentile) | 1721 (1000 - 2310) |
Time: 2024-08-25 12:06UTC to 2024-08-25 12:12UTC
Event contains 1064 original clicks, 532 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 435 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.84 |
| Median 10dB Center Frequency [kHz] | 5.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (4.96 - 6.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (4.06 - 8.08) |
| Median duration [μs] (25-75 percentile) | 1343 (1000 - 2140) |
Time: 2024-08-25 12:36UTC to 2024-08-25 12:42UTC
Event contains 1078 original clicks, 539 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 232 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 7.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (6.92 - 8.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.07 (5.41 - 9.43) |
| Median duration [μs] (25-75 percentile) | 422 (151 - 1000) |
Time: 2024-08-25 12:54UTC to 2024-08-25 13:00UTC
Event contains 1764 original clicks, 882 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 704 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.66 |
| Median 10dB Center Frequency [kHz] | 6.65 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.934 (6.14 - 7.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.88 (4.91 - 8.25) |
| Median duration [μs] (25-75 percentile) | 787 (163 - 1739) |
Time: 2024-08-25 13:00UTC to 2024-08-25 13:06UTC
Event contains 3526 original clicks, 1763 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1442 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.33 |
| Median 10dB Center Frequency [kHz] | 6.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.73 - 6.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (4.57 - 8.2) |
| Median duration [μs] (25-75 percentile) | 1336 (158 - 2325) |
Time: 2024-08-25 13:06UTC to 2024-08-25 13:12UTC
Event contains 4040 original clicks, 2020 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1603 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.43 |
| Median 10dB Center Frequency [kHz] | 6.42 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.77 - 7.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.15 (4.51 - 8.17) |
| Median duration [μs] (25-75 percentile) | 1913 (1000 - 2383) |
Time: 2024-08-25 13:12UTC to 2024-08-25 13:18UTC
Event contains 4216 original clicks, 2108 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1656 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 6.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.38 - 6.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.04 (4.26 - 7.69) |
| Median duration [μs] (25-75 percentile) | 2011 (1197 - 2409) |
Time: 2024-08-25 13:18UTC to 2024-08-25 13:24UTC
Event contains 4554 original clicks, 2277 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1732 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.06 |
| Median 10dB Center Frequency [kHz] | 6.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.51 - 6.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.07 (4.42 - 7.82) |
| Median duration [μs] (25-75 percentile) | 2122 (1415 - 2430) |
Time: 2024-08-25 13:24UTC to 2024-08-25 13:30UTC
Event contains 4002 original clicks, 2001 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1444 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.11 |
| Median 10dB Center Frequency [kHz] | 6.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.96 (5.53 - 6.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.94 (4.41 - 7.88) |
| Median duration [μs] (25-75 percentile) | 2123 (1350 - 2409) |
Time: 2024-08-26 01:00UTC to 2024-08-26 01:06UTC
Event contains 626 original clicks, 313 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 103 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.99 |
| Median 10dB Center Frequency [kHz] | 7.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.644 (7.33 - 8.39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.53 (6.63 - 9.23) |
| Median duration [μs] (25-75 percentile) | 159 (0 - 1000) |
Time: 2024-08-26 01:06UTC to 2024-08-26 01:12UTC
Event contains 882 original clicks, 441 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 157 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.19 |
| Median 10dB Center Frequency [kHz] | 7.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.832 (6.75 - 7.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.15 (6.16 - 8.75) |
| Median duration [μs] (25-75 percentile) | 245 (5 - 1142) |
Time: 2024-08-26 01:12UTC to 2024-08-26 01:18UTC
Event contains 706 original clicks, 353 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 90 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.59 |
| Median 10dB Center Frequency [kHz] | 8.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.585 (8.28 - 8.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 1.15 (7.93 - 9.39) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1000) |
Time: 2024-08-26 01:18UTC to 2024-08-26 01:24UTC
Event contains 576 original clicks, 288 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 152 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.938 (5.69 - 6.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 ( 4.3 - 8.06) |
| Median duration [μs] (25-75 percentile) | 347 (0 - 1188) |
Time: 2024-08-26 08:42UTC to 2024-08-26 08:48UTC
Event contains 752 original clicks, 376 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 327 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.76 |
| Median 10dB Center Frequency [kHz] | 5.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.03 - 6.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 ( 3.6 - 7.63) |
| Median duration [μs] (25-75 percentile) | 1436 (487 - 2087) |
Time: 2024-08-26 09:00UTC to 2024-08-26 09:06UTC
Event contains 2192 original clicks, 1096 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 929 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.89 |
| Median 10dB Center Frequency [kHz] | 6.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (6.32 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (4.72 - 8.54) |
| Median duration [μs] (25-75 percentile) | 1225 (308 - 2151) |
Time: 2024-08-26 09:06UTC to 2024-08-26 09:12UTC
Event contains 1528 original clicks, 764 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 584 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.02 |
| Median 10dB Center Frequency [kHz] | 5.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.908 ( 5.5 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.7 (4.27 - 7.59) |
| Median duration [μs] (25-75 percentile) | 2079 (1345 - 2409) |
Time: 2024-08-26 09:24UTC to 2024-08-26 09:30UTC
Event contains 2628 original clicks, 1314 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1057 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.53 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.89 - 7.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.03 (4.54 - 8.21) |
| Median duration [μs] (25-75 percentile) | 1655 (1000 - 2362) |
Time: 2024-08-26 09:30UTC to 2024-08-26 09:36UTC
Event contains 1352 original clicks, 676 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 581 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.61 |
| Median 10dB Center Frequency [kHz] | 6.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (5.77 - 7.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.65 (4.24 - 8.59) |
| Median duration [μs] (25-75 percentile) | 1285 (1000 - 2187) |
Time: 2024-08-26 09:36UTC to 2024-08-26 09:42UTC
Event contains 1664 original clicks, 832 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 687 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 6.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.47 - 6.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.32 (4.12 - 8.1) |
| Median duration [μs] (25-75 percentile) | 1502 (1000 - 2351) |
Time: 2024-08-26 09:42UTC to 2024-08-26 09:48UTC
Event contains 1764 original clicks, 882 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 758 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.14 |
| Median 10dB Center Frequency [kHz] | 6.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.53 - 6.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.17 (4.39 - 8.11) |
| Median duration [μs] (25-75 percentile) | 1475 (1000 - 2273) |
Time: 2024-08-26 09:48UTC to 2024-08-26 09:54UTC
Event contains 1192 original clicks, 596 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 507 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.95 |
| Median 10dB Center Frequency [kHz] | 5.96 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.22 - 6.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.36 (3.84 - 7.92) |
| Median duration [μs] (25-75 percentile) | 1322 (1000 - 2259) |
Time: 2024-08-26 09:54UTC to 2024-08-26 10:00UTC
Event contains 1040 original clicks, 520 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 438 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.15 |
| Median 10dB Center Frequency [kHz] | 7.11 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (6.53 - 7.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.35 (4.71 - 9.2) |
| Median duration [μs] (25-75 percentile) | 955 (192 - 1687) |
Time: 2024-08-26 10:00UTC to 2024-08-26 10:06UTC
Event contains 1506 original clicks, 753 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 623 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.95 |
| Median 10dB Center Frequency [kHz] | 6.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (6.18 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (4.18 - 8.99) |
| Median duration [μs] (25-75 percentile) | 1210 (339 - 2190) |
Time: 2024-08-26 10:06UTC to 2024-08-26 10:12UTC
Event contains 1394 original clicks, 697 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 579 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.2 |
| Median 10dB Center Frequency [kHz] | 7.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.49 - 7.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 (4.61 - 9.52) |
| Median duration [μs] (25-75 percentile) | 925 (128 - 2014) |
Time: 2024-08-26 10:12UTC to 2024-08-26 10:18UTC
Event contains 1656 original clicks, 828 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 623 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.62 |
| Median 10dB Center Frequency [kHz] | 6.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.91 - 7.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (4.52 - 8.54) |
| Median duration [μs] (25-75 percentile) | 1006 (182 - 2027) |
Time: 2024-08-26 10:24UTC to 2024-08-26 10:30UTC
Event contains 896 original clicks, 448 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 336 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.66 |
| Median 10dB Center Frequency [kHz] | 6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.04 - 6.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (4.21 - 8) |
| Median duration [μs] (25-75 percentile) | 1225 (463 - 2003) |
Time: 2024-08-26 10:30UTC to 2024-08-26 10:36UTC
Event contains 1864 original clicks, 932 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 647 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.28 |
| Median 10dB Center Frequency [kHz] | 6.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.983 (5.74 - 6.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.79 ( 4.5 - 7.76) |
| Median duration [μs] (25-75 percentile) | 1043 (100 - 2185) |
Time: 2024-08-26 10:36UTC to 2024-08-26 10:42UTC
Event contains 740 original clicks, 370 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 312 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.68 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.16 - 7.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (4.75 - 8.78) |
| Median duration [μs] (25-75 percentile) | 532 (41 - 1350) |
Time: 2024-08-26 10:42UTC to 2024-08-26 10:48UTC
Event contains 636 original clicks, 318 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 272 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 8.01 |
| Median 10dB Center Frequency [kHz] | 7.89 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (7.09 - 8.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.47 (5.78 - 10.1) |
| Median duration [μs] (25-75 percentile) | 583 (7 - 1384) |
Time: 2024-08-26 10:48UTC to 2024-08-26 10:54UTC
Event contains 966 original clicks, 483 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 410 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.91 |
| Median 10dB Center Frequency [kHz] | 7.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.14 - 7.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.36 (4.51 - 9.01) |
| Median duration [μs] (25-75 percentile) | 719 (167 - 1466) |
Time: 2024-08-26 10:54UTC to 2024-08-26 11:00UTC
Event contains 1146 original clicks, 573 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 498 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.55 |
| Median 10dB Center Frequency [kHz] | 6.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (5.78 - 7.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.81 (4.32 - 8.4) |
| Median duration [μs] (25-75 percentile) | 822 (227 - 1340) |
Time: 2024-08-26 11:00UTC to 2024-08-26 11:06UTC
Event contains 1826 original clicks, 913 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 820 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.3 |
| Median 10dB Center Frequency [kHz] | 7.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.61 - 7.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 (5.13 - 9.46) |
| Median duration [μs] (25-75 percentile) | 693 (0 - 1366) |
Time: 2024-08-26 11:06UTC to 2024-08-26 11:12UTC
Event contains 1942 original clicks, 971 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 833 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.25 |
| Median 10dB Center Frequency [kHz] | 7.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (6.54 - 7.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.1 (5.14 - 9.67) |
| Median duration [μs] (25-75 percentile) | 665 (0 - 1478) |
Time: 2024-08-26 11:12UTC to 2024-08-26 11:18UTC
Event contains 2682 original clicks, 1341 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1102 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.73 |
| Median 10dB Center Frequency [kHz] | 6.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.19 - 7.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.84 (4.49 - 8.66) |
| Median duration [μs] (25-75 percentile) | 908 (0 - 1771) |
Time: 2024-08-26 11:18UTC to 2024-08-26 11:24UTC
Event contains 3086 original clicks, 1543 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1269 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.33 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.06 ( 5.7 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.68 (4.53 - 8.17) |
| Median duration [μs] (25-75 percentile) | 1048 (109 - 1971) |
Time: 2024-08-26 11:42UTC to 2024-08-26 11:48UTC
Event contains 3410 original clicks, 1705 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1319 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.86 |
| Median 10dB Center Frequency [kHz] | 6.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.32 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 ( 4.8 - 8.62) |
| Median duration [μs] (25-75 percentile) | 1335 (27 - 2281) |
Time: 2024-08-26 11:48UTC to 2024-08-26 11:54UTC
Event contains 2822 original clicks, 1411 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1240 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.39 - 7.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.41 (4.77 - 9.19) |
| Median duration [μs] (25-75 percentile) | 1079 (33 - 2005) |
Time: 2024-08-26 11:54UTC to 2024-08-26 12:00UTC
Event contains 2746 original clicks, 1373 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1209 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 7.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.75 - 8.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (5.03 - 9.49) |
| Median duration [μs] (25-75 percentile) | 1387 (396 - 2281) |
Time: 2024-08-26 12:00UTC to 2024-08-26 12:06UTC
Event contains 2232 original clicks, 1116 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 961 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.28 |
| Median 10dB Center Frequency [kHz] | 6.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.45 - 7.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 (4.28 - 8.75) |
| Median duration [μs] (25-75 percentile) | 1369 (143 - 2294) |
Time: 2024-08-26 12:06UTC to 2024-08-26 12:12UTC
Event contains 2068 original clicks, 1034 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 883 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.69 |
| Median 10dB Center Frequency [kHz] | 7.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (5.85 - 7.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (4.37 - 9.08) |
| Median duration [μs] (25-75 percentile) | 1311 (198 - 2185) |
Time: 2024-08-26 12:12UTC to 2024-08-26 12:18UTC
Event contains 2298 original clicks, 1149 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 924 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.64 |
| Median 10dB Center Frequency [kHz] | 6.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.89 - 7.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.74 (4.34 - 8.87) |
| Median duration [μs] (25-75 percentile) | 1324 (430 - 2318) |
Time: 2024-08-26 12:18UTC to 2024-08-26 12:24UTC
Event contains 1600 original clicks, 800 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 653 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.47 - 7.12) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 (4.24 - 8.9) |
| Median duration [μs] (25-75 percentile) | 1097 (414 - 2109) |
Time: 2024-08-26 12:24UTC to 2024-08-26 12:30UTC
Event contains 1260 original clicks, 630 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 457 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.31 |
| Median 10dB Center Frequency [kHz] | 6.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.55 - 7.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.45 ( 4.2 - 8.66) |
| Median duration [μs] (25-75 percentile) | 1092 (128 - 2013) |
Time: 2024-08-26 12:48UTC to 2024-08-26 12:54UTC
Event contains 1722 original clicks, 861 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 699 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.86 |
| Median 10dB Center Frequency [kHz] | 5.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (5.23 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.07 (4.18 - 7.57) |
| Median duration [μs] (25-75 percentile) | 1251 (454 - 2113) |
Time: 2024-08-26 13:00UTC to 2024-08-26 13:06UTC
Event contains 1166 original clicks, 583 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 402 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.6 |
| Median 10dB Center Frequency [kHz] | 5.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.937 (5.09 - 6.11) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.28 (3.89 - 7.57) |
| Median duration [μs] (25-75 percentile) | 1198 (255 - 1979) |
Time: 2024-08-26 13:12UTC to 2024-08-26 13:18UTC
Event contains 7048 original clicks, 3524 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2322 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 6.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (5.18 - 6.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.97 ( 3.9 - 8.42) |
| Median duration [μs] (25-75 percentile) | 1288 (1000 - 2086) |
Time: 2024-08-26 15:12UTC to 2024-08-26 15:18UTC
Event contains 912 original clicks, 456 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 365 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.2 |
| Median 10dB Center Frequency [kHz] | 6.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.875 (5.67 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.56 (4.63 - 7.49) |
| Median duration [μs] (25-75 percentile) | 1697 (1000 - 2291) |
Time: 2024-08-26 15:18UTC to 2024-08-26 15:24UTC
Event contains 724 original clicks, 362 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 289 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.24 |
| Median 10dB Center Frequency [kHz] | 6.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.968 (5.71 - 6.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.63 (4.51 - 7.48) |
| Median duration [μs] (25-75 percentile) | 1538 (1000 - 2013) |
Time: 2024-08-26 15:24UTC to 2024-08-26 15:30UTC
Event contains 1192 original clicks, 596 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 499 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.74 |
| Median 10dB Center Frequency [kHz] | 5.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.977 ( 5.2 - 6.21) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.41 (4.68 - 7.19) |
| Median duration [μs] (25-75 percentile) | 1822 (1198 - 2255) |
Time: 2024-08-26 15:30UTC to 2024-08-26 15:36UTC
Event contains 690 original clicks, 345 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 288 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 6.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 ( 5.4 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (4.75 - 7.89) |
| Median duration [μs] (25-75 percentile) | 1749 (1000 - 2206) |
Time: 2024-08-26 15:48UTC to 2024-08-26 15:54UTC
Event contains 812 original clicks, 406 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 362 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.94 |
| Median 10dB Center Frequency [kHz] | 6.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.863 (5.47 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.51 (4.63 - 7.5) |
| Median duration [μs] (25-75 percentile) | 1902 (1208 - 2385) |
Time: 2024-08-26 16:00UTC to 2024-08-26 16:06UTC
Event contains 670 original clicks, 335 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 287 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.87 |
| Median 10dB Center Frequency [kHz] | 5.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.976 (5.33 - 6.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.98 ( 4.2 - 7.25) |
| Median duration [μs] (25-75 percentile) | 1942 (1283 - 2333) |
Time: 2024-08-26 16:06UTC to 2024-08-26 16:12UTC
Event contains 610 original clicks, 305 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 272 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 6.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.92 (5.34 - 6.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (3.94 - 7.95) |
| Median duration [μs] (25-75 percentile) | 1658 (1046 - 2209) |
Time: 2024-08-26 16:12UTC to 2024-08-26 16:18UTC
Event contains 414 original clicks, 207 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 179 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.931 (6.08 - 7.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.63 (5.01 - 7.91) |
| Median duration [μs] (25-75 percentile) | 1376 (1000 - 2140) |
Time: 2024-08-26 16:18UTC to 2024-08-26 16:24UTC
Event contains 778 original clicks, 389 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 349 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.74 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.937 (5.03 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.09 (4.13 - 7.41) |
| Median duration [μs] (25-75 percentile) | 1661 (1204 - 2362) |
Time: 2024-08-26 17:12UTC to 2024-08-26 17:18UTC
Event contains 456 original clicks, 228 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 191 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.73 |
| Median 10dB Center Frequency [kHz] | 6.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.877 (5.31 - 6.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.75 (4.48 - 7.79) |
| Median duration [μs] (25-75 percentile) | 1577 (1000 - 2329) |
Time: 2024-08-29 13:06UTC to 2024-08-29 13:12UTC
Event contains 802 original clicks, 401 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 271 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.87 - 7.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.53 ( 4.2 - 8.1) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 13:24UTC to 2024-08-29 13:30UTC
Event contains 674 original clicks, 337 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 206 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.85 |
| Median 10dB Center Frequency [kHz] | 6.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.978 (6.14 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.87 (4.57 - 8.17) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 13:30UTC to 2024-08-29 13:36UTC
Event contains 836 original clicks, 418 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 297 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.92 |
| Median 10dB Center Frequency [kHz] | 6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.19 - 6.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.89 (3.99 - 7.66) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 13:48UTC to 2024-08-29 13:54UTC
Event contains 470 original clicks, 235 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 169 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.45 |
| Median 10dB Center Frequency [kHz] | 6.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (5.55 - 7.31) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 ( 3.9 - 8.51) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 8) |
Time: 2024-08-29 14:12UTC to 2024-08-29 14:18UTC
Event contains 1010 original clicks, 505 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 377 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.76 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.01 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.58 (4.22 - 8.03) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 14:18UTC to 2024-08-29 14:24UTC
Event contains 1230 original clicks, 615 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 437 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.3 |
| Median 10dB Center Frequency [kHz] | 6.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (5.57 - 7.04) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (3.91 - 7.97) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 14:30UTC to 2024-08-29 14:36UTC
Event contains 1484 original clicks, 742 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 468 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.07 |
| Median 10dB Center Frequency [kHz] | 6.42 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (5.38 - 6.87) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (4.29 - 8.65) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 115) |
Time: 2024-08-29 14:36UTC to 2024-08-29 14:42UTC
Event contains 1724 original clicks, 862 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 575 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.55 |
| Median 10dB Center Frequency [kHz] | 6.56 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (5.74 - 7.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (4.57 - 8.66) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 26) |
Time: 2024-08-29 14:42UTC to 2024-08-29 14:48UTC
Event contains 2302 original clicks, 1151 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 793 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.76 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.08 - 7.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 (4.62 - 8.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 14:48UTC to 2024-08-29 14:54UTC
Event contains 1214 original clicks, 607 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 365 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (5.53 - 6.78) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.22 (3.94 - 7.97) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 14:54UTC to 2024-08-29 15:00UTC
Event contains 844 original clicks, 422 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 286 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.68 |
| Median 10dB Center Frequency [kHz] | 6.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 ( 5.9 - 7.35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.57 (4.51 - 8.75) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 15:00UTC to 2024-08-29 15:06UTC
Event contains 2378 original clicks, 1189 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 859 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.95 |
| Median 10dB Center Frequency [kHz] | 6.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.31 - 7.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.42 ( 4.8 - 9.02) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 15:06UTC to 2024-08-29 15:12UTC
Event contains 2344 original clicks, 1172 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 794 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.43 |
| Median 10dB Center Frequency [kHz] | 6.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.72 - 7.13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 (4.61 - 8.53) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 5) |
Time: 2024-08-29 15:12UTC to 2024-08-29 15:18UTC
Event contains 2422 original clicks, 1211 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 867 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.91 |
| Median 10dB Center Frequency [kHz] | 7.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (6.26 - 7.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (4.82 - 9.03) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 15:18UTC to 2024-08-29 15:24UTC
Event contains 3188 original clicks, 1594 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1260 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.94 |
| Median 10dB Center Frequency [kHz] | 6.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (6.27 - 7.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.42 (4.87 - 9.06) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 15:24UTC to 2024-08-29 15:30UTC
Event contains 3344 original clicks, 1672 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1466 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.79 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (5.08 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (3.78 - 8.31) |
| Median duration [μs] (25-75 percentile) | 44 (0 - 447) |
Time: 2024-08-29 15:30UTC to 2024-08-29 15:36UTC
Event contains 4176 original clicks, 2088 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1788 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (5.29 - 6.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.95 (3.66 - 8.25) |
| Median duration [μs] (25-75 percentile) | 34 (0 - 316) |
Time: 2024-08-29 15:36UTC to 2024-08-29 15:42UTC
Event contains 2608 original clicks, 1304 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1060 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.94 - 7.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (4.26 - 8.52) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 15:42UTC to 2024-08-29 15:48UTC
Event contains 2100 original clicks, 1050 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 826 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 7.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.11 - 7.73) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (4.39 - 9.21) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 282) |
Time: 2024-08-29 15:48UTC to 2024-08-29 15:54UTC
Event contains 4160 original clicks, 2080 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1702 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.02 |
| Median 10dB Center Frequency [kHz] | 6.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (6.19 - 7.78) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 ( 4.7 - 9.38) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 261) |
Time: 2024-08-29 15:54UTC to 2024-08-29 16:00UTC
Event contains 4880 original clicks, 2440 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2084 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.36 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 ( 6.5 - 8.16) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.25 (4.68 - 9.74) |
| Median duration [μs] (25-75 percentile) | 50 (0 - 478) |
Time: 2024-08-29 16:00UTC to 2024-08-29 16:06UTC
Event contains 4684 original clicks, 2342 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2049 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.98 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (6.17 - 7.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.68 ( 4.4 - 9.68) |
| Median duration [μs] (25-75 percentile) | 133 (0 - 1000) |
Time: 2024-08-29 16:06UTC to 2024-08-29 16:12UTC
Event contains 4652 original clicks, 2326 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2117 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.56 |
| Median 10dB Center Frequency [kHz] | 7.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (6.51 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.19 (4.46 - 10.1) |
| Median duration [μs] (25-75 percentile) | 255 (0 - 1000) |
Time: 2024-08-29 16:12UTC to 2024-08-29 16:18UTC
Event contains 4300 original clicks, 2150 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1968 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.63 |
| Median 10dB Center Frequency [kHz] | 7.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (6.79 - 8.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.99 (4.68 - 10.2) |
| Median duration [μs] (25-75 percentile) | 154 (0 - 1000) |
Time: 2024-08-29 16:18UTC to 2024-08-29 16:24UTC
Event contains 4830 original clicks, 2415 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2281 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.58 |
| Median 10dB Center Frequency [kHz] | 7.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 ( 6.7 - 8.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.94 (4.64 - 10.1) |
| Median duration [μs] (25-75 percentile) | 334 (31 - 1000) |
Time: 2024-08-29 16:24UTC to 2024-08-29 16:30UTC
Event contains 4514 original clicks, 2257 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2074 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.39 |
| Median 10dB Center Frequency [kHz] | 7.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (6.52 - 8.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.86 (4.57 - 10) |
| Median duration [μs] (25-75 percentile) | 180 (0 - 1000) |
Time: 2024-08-29 16:30UTC to 2024-08-29 16:36UTC
Event contains 4460 original clicks, 2230 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1796 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 7.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.75 - 8.23) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.11 (4.81 - 9.75) |
| Median duration [μs] (25-75 percentile) | 130 (0 - 1000) |
Time: 2024-08-29 16:36UTC to 2024-08-29 16:42UTC
Event contains 5394 original clicks, 2697 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2146 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.81 |
| Median 10dB Center Frequency [kHz] | 7.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.96 - 8.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.19 (5.51 - 9.97) |
| Median duration [μs] (25-75 percentile) | 16 (0 - 330) |
Time: 2024-08-29 16:42UTC to 2024-08-29 16:48UTC
Event contains 6836 original clicks, 3418 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2625 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.77 |
| Median 10dB Center Frequency [kHz] | 7.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (7.02 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.94 ( 5.4 - 9.93) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 211) |
Time: 2024-08-29 16:48UTC to 2024-08-29 16:54UTC
Event contains 7042 original clicks, 3521 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2725 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.73 |
| Median 10dB Center Frequency [kHz] | 7.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.99 - 8.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.13 (5.28 - 9.92) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 297) |
Time: 2024-08-29 16:54UTC to 2024-08-29 17:00UTC
Event contains 5586 original clicks, 2793 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2113 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 7.66 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (6.92 - 8.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.55 (5.05 - 9.96) |
| Median duration [μs] (25-75 percentile) | 21 (0 - 271) |
Time: 2024-08-29 17:00UTC to 2024-08-29 17:06UTC
Event contains 4252 original clicks, 2126 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1691 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.1 |
| Median 10dB Center Frequency [kHz] | 8.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (7.16 - 8.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.73 ( 5.1 - 10.6) |
| Median duration [μs] (25-75 percentile) | 133 (0 - 374) |
Time: 2024-08-29 17:06UTC to 2024-08-29 17:12UTC
Event contains 5130 original clicks, 2565 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2151 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.84 |
| Median 10dB Center Frequency [kHz] | 7.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 ( 6.9 - 8.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.88 (4.86 - 10.3) |
| Median duration [μs] (25-75 percentile) | 91 (0 - 338) |
Time: 2024-08-29 17:12UTC to 2024-08-29 17:18UTC
Event contains 4502 original clicks, 2251 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1880 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.57 |
| Median 10dB Center Frequency [kHz] | 7.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (6.71 - 8.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.53 (4.91 - 9.97) |
| Median duration [μs] (25-75 percentile) | 154 (0 - 1000) |
Time: 2024-08-29 17:18UTC to 2024-08-29 17:24UTC
Event contains 4406 original clicks, 2203 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1822 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.67 |
| Median 10dB Center Frequency [kHz] | 7.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (6.78 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.42 (5.23 - 10.1) |
| Median duration [μs] (25-75 percentile) | 68 (0 - 341) |
Time: 2024-08-29 17:24UTC to 2024-08-29 17:30UTC
Event contains 5828 original clicks, 2914 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2315 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.5 |
| Median 10dB Center Frequency [kHz] | 7.52 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (6.67 - 8.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.66 (4.73 - 9.97) |
| Median duration [μs] (25-75 percentile) | 57 (0 - 248) |
Time: 2024-08-29 17:30UTC to 2024-08-29 17:36UTC
Event contains 4434 original clicks, 2217 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1772 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.75 |
| Median 10dB Center Frequency [kHz] | 6.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (6.01 - 7.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.53 (4.21 - 9.51) |
| Median duration [μs] (25-75 percentile) | 81 (0 - 382) |
Time: 2024-08-29 17:36UTC to 2024-08-29 17:42UTC
Event contains 3328 original clicks, 1664 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1317 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.35 |
| Median 10dB Center Frequency [kHz] | 6.72 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (5.51 - 7.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.57 (3.81 - 9.46) |
| Median duration [μs] (25-75 percentile) | 68 (0 - 370) |
Time: 2024-08-29 17:42UTC to 2024-08-29 17:48UTC
Event contains 4384 original clicks, 2192 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1723 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.3 |
| Median 10dB Center Frequency [kHz] | 7.28 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (6.52 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.25 (4.57 - 9.55) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 276) |
Time: 2024-08-29 17:48UTC to 2024-08-29 17:54UTC
Event contains 3918 original clicks, 1959 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1574 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 ( 5.1 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.15 ( 3.5 - 8.89) |
| Median duration [μs] (25-75 percentile) | 78 (0 - 292) |
Time: 2024-08-29 17:54UTC to 2024-08-29 18:00UTC
Event contains 3568 original clicks, 1784 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1324 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.69 |
| Median 10dB Center Frequency [kHz] | 6.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (5.84 - 7.49) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.02 (4.24 - 9.04) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 191) |
Time: 2024-08-29 18:00UTC to 2024-08-29 18:06UTC
Event contains 2342 original clicks, 1171 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 835 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.04 |
| Median 10dB Center Frequency [kHz] | 6.38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (5.26 - 6.81) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.21 (3.64 - 8.93) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 18:06UTC to 2024-08-29 18:12UTC
Event contains 968 original clicks, 484 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 281 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.56 |
| Median 10dB Center Frequency [kHz] | 6.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 ( 6 - 7.34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.69 (4.58 - 8.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 18:12UTC to 2024-08-29 18:18UTC
Event contains 2516 original clicks, 1258 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 855 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.99 |
| Median 10dB Center Frequency [kHz] | 6.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.26 - 6.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (4.01 - 8.19) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 44) |
Time: 2024-08-29 18:18UTC to 2024-08-29 18:24UTC
Event contains 2218 original clicks, 1109 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 785 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.26 |
| Median 10dB Center Frequency [kHz] | 6.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (5.52 - 6.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.18 (4.04 - 8.36) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 5) |
Time: 2024-08-29 18:24UTC to 2024-08-29 18:30UTC
Event contains 1914 original clicks, 957 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 595 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.88 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (5.22 - 6.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (3.83 - 8.22) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 5) |
Time: 2024-08-29 18:42UTC to 2024-08-29 18:48UTC
Event contains 1254 original clicks, 627 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 437 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.81 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (4.98 - 6.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.74 (3.62 - 7.86) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 18:48UTC to 2024-08-29 18:54UTC
Event contains 1068 original clicks, 534 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 296 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.09 |
| Median 10dB Center Frequency [kHz] | 6.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.43 - 6.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 ( 4 - 8.15) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 19:06UTC to 2024-08-29 19:12UTC
Event contains 1002 original clicks, 501 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 298 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.96 |
| Median 10dB Center Frequency [kHz] | 6.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.29 - 6.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.21 (4.28 - 8) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 19:12UTC to 2024-08-29 19:18UTC
Event contains 968 original clicks, 484 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 334 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.7 |
| Median 10dB Center Frequency [kHz] | 5.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (5.08 - 6.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (3.66 - 7.87) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 19:18UTC to 2024-08-29 19:24UTC
Event contains 640 original clicks, 320 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 229 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (5.38 - 7.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (3.85 - 8.3) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 19:24UTC to 2024-08-29 19:30UTC
Event contains 814 original clicks, 407 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 250 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.44 |
| Median 10dB Center Frequency [kHz] | 6.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.93 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.91 (4.46 - 8.08) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 19:36UTC to 2024-08-29 19:42UTC
Event contains 520 original clicks, 260 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 144 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.7 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.36 (5.74 - 7.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (4.55 - 8.68) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 21:00UTC to 2024-08-29 21:06UTC
Event contains 626 original clicks, 313 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 247 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.16 |
| Median 10dB Center Frequency [kHz] | 6.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.56 - 6.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.23 (4.38 - 8.23) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 21:12UTC to 2024-08-29 21:18UTC
Event contains 482 original clicks, 241 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 187 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.1 |
| Median 10dB Center Frequency [kHz] | 7.08 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.48 - 7.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.28 (5.23 - 8.97) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 21:18UTC to 2024-08-29 21:24UTC
Event contains 530 original clicks, 265 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 184 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.42 |
| Median 10dB Center Frequency [kHz] | 6.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.989 (5.85 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (4.78 - 8.88) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 22:18UTC to 2024-08-29 22:24UTC
Event contains 630 original clicks, 315 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 250 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (5.59 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 ( 4.4 - 8.08) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 22:30UTC to 2024-08-29 22:36UTC
Event contains 508 original clicks, 254 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 189 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.3 |
| Median 10dB Center Frequency [kHz] | 6.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.955 (5.82 - 6.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.71 (4.47 - 7.83) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 10) |
Time: 2024-08-29 23:06UTC to 2024-08-29 23:12UTC
Event contains 408 original clicks, 204 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 127 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.17 |
| Median 10dB Center Frequency [kHz] | 7.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.99 (6.47 - 7.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.92 (5.66 - 8.84) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 23:12UTC to 2024-08-29 23:18UTC
Event contains 666 original clicks, 333 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 222 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.3 |
| Median 10dB Center Frequency [kHz] | 7.18 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.91 (6.71 - 7.78) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.81 (5.62 - 8.36) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 23:36UTC to 2024-08-29 23:42UTC
Event contains 436 original clicks, 218 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 167 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.44 |
| Median 10dB Center Frequency [kHz] | 6.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (4.95 - 5.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 (3.84 - 8.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-08-29 23:48UTC to 2024-08-29 23:54UTC
Event contains 404 original clicks, 202 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 144 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.76 |
| Median 10dB Center Frequency [kHz] | 7.82 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.982 (7.14 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.27 (6.22 - 9.78) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-29 23:54UTC to 2024-08-30 00:00UTC
Event contains 656 original clicks, 328 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 215 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.13 |
| Median 10dB Center Frequency [kHz] | 7.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (6.56 - 7.54) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.03 (4.98 - 8.5) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 00:06UTC to 2024-08-30 00:12UTC
Event contains 842 original clicks, 421 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 302 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.34 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 ( 6.7 - 7.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.48 (5.29 - 8.89) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 00:12UTC to 2024-08-30 00:18UTC
Event contains 526 original clicks, 263 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 146 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (6.75 - 7.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.16 (5.56 - 8.73) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 00:18UTC to 2024-08-30 00:24UTC
Event contains 400 original clicks, 200 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 98 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.65 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.99 - 7.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.54 (4.75 - 8.55) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-08-30 00:30UTC to 2024-08-30 00:36UTC
Event contains 414 original clicks, 207 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 127 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.57 |
| Median 10dB Center Frequency [kHz] | 6.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (5.92 - 7.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.78 ( 4.2 - 9.23) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
#dbDisconnect(dbFile)
After additional filtering based on median peak frequency, 264 events events of 2140 original events remain.